@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');

*{
    box-sizing:border-box;
    font-family:Vazirmatn;
}

body{
    margin:0;
    background:#f7f2eb;
}


.cover{
    height:400px;
    background:
    linear-gradient(#0008,#0008),
    url("https://picsum.photos/1200/600");
    background-size:cover;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
}


.cover h1{
    font-size:45px;
}


button{
    border:none;
    padding:12px 25px;
    border-radius:30px;
    cursor:pointer;
    background:#6b4226;
    color:white;
}


#menu{
    padding:40px;
}


h2{
    text-align:center;
}


.categories{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:30px;
}


.items{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}


.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    padding-bottom:20px;
    box-shadow:0 10px 25px #0002;
}


.card img{
    width:100%;
}


.card h3,
.card p,
.card span{
    padding:0 20px;
}


.card span{
    color:#6b4226;
    font-weight:bold;
}